home *** CD-ROM | disk | FTP | other *** search
- /* Asynch controller control block */
- #define MAX_STORE 1024
-
- struct Store_input {
- char *head;
- char store[MAX_STORE];
- char *tail;
- int amt;
- };
-
- struct asy {
- unsigned int speed; /* Line speed */
- int portIn;
- int portOut;
- int devopen;
- char *tty;
- char recv_buf[MAX_STORE];
- char snd_buf[MAX_STORE];
- };
- extern struct asy asy[];
- extern unsigned nasy; /* Actual number of asynch lines */
- #define ASY_MAX 2 /* Two asynch ports on the MAC */
- struct RemoveIt {
- struct RemoveIt *next;
- char *name_ptr;
- };
-
- #define BADDIR ":spool:badjobs:"
-
- #define BMRC ":bm.rc"
- #define MAILQUEUE ":spool:mqueue:*.wrk"
- #define STARTUP ":net.start"
- #define CONFIG ":config.net"
- #define USERFILE ":ftpusers"
- #define HOSTS ":hosts.net"
- #define MAILSPOOL ":spool:mail:"
- #define MAILQDIR ":spool:mqueue:"
- #define ROUTEQDIR ":spool:rqueue:"
-